home *** CD-ROM | disk | FTP | other *** search
/ PD Collection CD 1 / PD Collection CD 1.iso / textual / pdftops / xpdf / h / Flags < prev    next >
Text File  |  1996-05-23  |  448b  |  22 lines

  1. //========================================================================
  2. //
  3. // Flags.h
  4. //
  5. // Copyright 1996 Derek B. Noonburg
  6. //
  7. //========================================================================
  8.  
  9. #ifndef FLAGS_H
  10. #define FLAGS_H
  11.  
  12. // Size of RGB color cube.
  13. extern int rgbCubeSize;
  14.  
  15. // Print commands as they're executed.
  16. extern GBool printCommands;
  17.  
  18. // Send error messages to /dev/tty instead of stderr.
  19. extern GBool errorsToTTY;
  20.  
  21. #endif
  22.